summaryrefslogtreecommitdiffstats
path: root/src/android/app/src/main/res/navigation/emulation_navigation.xml
blob: 2f8c3fa0dd09697d6bfc0f5b144f4bc797c3f111 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?xml version="1.0" encoding="utf-8"?>
<navigation xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/emulation_navigation"
    app:startDestination="@id/emulationFragment">

    <fragment
        android:id="@+id/emulationFragment"
        android:name="org.yuzu.yuzu_emu.fragments.EmulationFragment"
        android:label="fragment_emulation"
        tools:layout="@layout/fragment_emulation" >
        <argument
            android:name="game"
            app:argType="org.yuzu.yuzu_emu.model.Game"
            app:nullable="true"
            android:defaultValue="@null" />
        <argument
            android:name="custom"
            app:argType="boolean"
            android:defaultValue="false" />
    </fragment>

    <activity
        android:id="@+id/settingsActivity"
        android:name="org.yuzu.yuzu_emu.features.settings.ui.SettingsActivity"
        android:label="SettingsActivity">
        <argument
            android:name="game"
            app:argType="org.yuzu.yuzu_emu.model.Game"
            app:nullable="true" />
        <argument
            android:name="menuTag"
            app:argType="org.yuzu.yuzu_emu.features.settings.model.Settings$MenuTag" />
    </activity>

    <action
        android:id="@+id/action_global_settingsActivity"
        app:destination="@id/settingsActivity" />

</navigation>